type net/http.http2Flags

25 uses

	net/http (current package)
		h2_bundle.go#L1393: type http2Flags uint8
		h2_bundle.go#L1396: func (f http2Flags) Has(v http2Flags) bool {
		h2_bundle.go#L1403: 	http2FlagDataEndStream http2Flags = 0x1
		h2_bundle.go#L1404: 	http2FlagDataPadded    http2Flags = 0x8
		h2_bundle.go#L1407: 	http2FlagHeadersEndStream  http2Flags = 0x1
		h2_bundle.go#L1408: 	http2FlagHeadersEndHeaders http2Flags = 0x4
		h2_bundle.go#L1409: 	http2FlagHeadersPadded     http2Flags = 0x8
		h2_bundle.go#L1410: 	http2FlagHeadersPriority   http2Flags = 0x20
		h2_bundle.go#L1413: 	http2FlagSettingsAck http2Flags = 0x1
		h2_bundle.go#L1416: 	http2FlagPingAck http2Flags = 0x1
		h2_bundle.go#L1419: 	http2FlagContinuationEndHeaders http2Flags = 0x4
		h2_bundle.go#L1421: 	http2FlagPushPromiseEndHeaders http2Flags = 0x4
		h2_bundle.go#L1422: 	http2FlagPushPromisePadded     http2Flags = 0x8
		h2_bundle.go#L1425: var http2flagName = map[http2FrameType]map[http2Flags]string{
		h2_bundle.go#L1489: 	Flags http2Flags
		h2_bundle.go#L1526: 			name := http2flagName[h.Type][http2Flags(1<<i)]
		h2_bundle.go#L1573: 		Flags:    http2Flags(buf[4]),
		h2_bundle.go#L1671: func (f *http2Framer) startWrite(ftype http2FrameType, flags http2Flags, streamID uint32) {
		h2_bundle.go#L2013: 	var flags http2Flags
		h2_bundle.go#L2195: 	var flags http2Flags
		h2_bundle.go#L2424: 	var flags http2Flags
		h2_bundle.go#L2591: 	var flags http2Flags
		h2_bundle.go#L2690: 	var flags http2Flags
		h2_bundle.go#L2712: func (f *http2Framer) WriteRawFrame(t http2FrameType, flags http2Flags, streamID uint32, payload []byte) error {